java math 最大值

您所在的位置:网站首页 java 最大数值 java math 最大值

java math 最大值

2023-08-27 05:27| 来源: 网络整理| 查看: 265

public class Demo{

public static void main(String args[]){

/**

*Math.sqrt()//计算平方根

*Math.cbrt()//计算立方根

*Math.pow(a, b)//计算a的b次方

*Math.max( , );//计算最大值

*Math.min( , );//计算最小值

*/

System.out.println(Math.sqrt(16)); //4.0

System.out.println(Math.cbrt(8)); //2.0

System.out.println(Math.pow(3,2)); //9.0

System.out.println(Math.max(2.3,4.5));//4.5

System.out.println(Math.min(2.3,4.5));//2.3

/**

* abs求绝对值

*/

System.out.println(Math.abs(-10.4)); //10.4

System.out.println(Math.abs(10.1)); //10.1

/**

* ceil天花板的意思,就是返回大的值(靠的最近的整数(不论正负数),且为大的整数)

*/

System.out.println(Math.ceil(-10.1)); //-10.0

System.out.println(Math.ceil(10.7)); //11.0

System.out.println(Math.ceil(-0.7)); //-0.0

System.out.println(Math.ceil(0.0)); //0.0



【本文地址】


今日新闻


推荐新闻


CopyRight 2018-2019 办公设备维修网 版权所有 豫ICP备15022753号-3